home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Chat & Communication / Digsby build 37 / digsby_setup.exe / lib / gui / imwin / imwindnd.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-13  |  2KB  |  55 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. import wx
  5. import util
  6. from gui import contactdialogs
  7.  
  8. class ImWinDropTarget(wx.PyDropTarget):
  9.     
  10.     def __init__(self, parent):
  11.         wx.PyDropTarget.__init__(self)
  12.         self.dragged = wx.DataObjectComposite()
  13.         self.imwin = parent
  14.         drag_types = dict(file = wx.FileDataObject(), text = wx.TextDataObject(), bitmap = wx.PyBitmapDataObject())
  15.         for dt, dobjs in drag_types.iteritems():
  16.             setattr(self.dragged, dt, dobjs)
  17.         
  18.         for v in drag_types.itervalues():
  19.             self.dragged.Add(v)
  20.         
  21.         self.SetDataObject(self.dragged)
  22.  
  23.     
  24.     def OnEnter(self, x, y, d):
  25.         return d
  26.  
  27.     
  28.     def OnDrop(self, x, y):
  29.         return True
  30.  
  31.     
  32.     def OnDragOver(self, x, y, d):
  33.         return wx.DragMove
  34.  
  35.     
  36.     def OnData(self, x, y, d):
  37.         self.GetData()
  38.         dragged = self.dragged
  39.         dropped = util.Storage(files = dragged.file.GetFilenames(), bitmap = dragged.bitmap.GetBitmap(), text = dragged.text.GetText())
  40.         if dropped.files:
  41.             contactdialogs.send_files(self.imwin, self.imwin.convo.buddy, dropped.files)
  42.             return True
  43.         
  44.         if dropped.bitmap:
  45.             return True
  46.         
  47.         if dropped.text:
  48.             self.imwin.input_area.SetValue(dropped.text)
  49.             self.imwin.input_area.tc.SetSelection(-1, -1)
  50.             return True
  51.         
  52.         return False
  53.  
  54.  
  55.